[PATCH] [PATCH] Increase size of sxpr parser input buffer
Increase the size of the sxpr parser input buffer from 1024 characters, which
isn't long enough to hold larger domain configurations (xfrd transmits the
entire domain config sxpr as a single atom inside of another sxpr).
Signed-off-by: Jody Belka <knew (dash) xen (at) pimb (dot) org>
kaf24@viper.(none)
katzj@redhat.com
laudney@eclipse.(none)
+lists-xen@pimb.org
lynx@idefix.cl.cam.ac.uk
mafetter@fleming.research
mark@maw48.kings.cam.ac.uk
/** Size of a parser input buffer.
* Tokens read must fit into this size (including trailing null).
*/
-#define PARSER_BUF_SIZE 1024
+#define PARSER_BUF_SIZE 4096
struct Parser;
typedef int ParserStateFn(struct Parser *, char c);